home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / ACGIFREE.ZIP / INCLUDE / A_GLOBAL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-27  |  672 b   |  25 lines

  1. //a_Buffer manipulation
  2. char *aStrDup(const char *pccNew, int iLength = -0x1, int iNullTerminate = 0x1);
  3. char *aStrCat(const char *pcc1, const char *pcc2);
  4. BYTE *aMemDup(const BYTE *pbNew, int iLength);
  5. BYTE *aMemCat(const BYTE *pb1, int iL1, const BYTE *pb2, int iL2);
  6.  
  7. //a_ANSI extensions
  8. #ifndef _strrev
  9. char * _strrev (char *pcString);
  10. #endif
  11.  
  12. #ifndef xtoa
  13. static void xtoa (DWORD dwNumber, char *pcBuffer, UINT uRadix, int iIsNegative);
  14. #endif
  15. #ifndef _itoa
  16. char *_itoa (int iNumber, char *pcBuffer, UINT uRadix);
  17. #ifndef itoa
  18. #define itoa _itoa
  19. #endif
  20. #endif
  21.  
  22. #ifndef _ultoa
  23. char *_ultoa (DWORD dwNumber, char *pcBuffer, UINT uRadix);
  24. #endif
  25.